﻿body {
	margin: 0px;
	padding: 0px;
	background-color: #ffffff;
 }

#header{
	background-color: #3f8dbf;
	float: left;
	width: 100%;
	height: 50px;
	color: rgba(255,255,255,1);
	line-height: 50px;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1;
}
#header a {
	color: rgba(255,255,255,1);
	text-decoration: none;
	display: block;
	font-size: 15px;
}
#header-left{
	float: left;
	height: 50px;
}
#header-left:hover #header-left-icon{
	background-color: #3F8DBF;
}
#header-left:hover #header-left-text{
	background-color: #599BC8;
}
#header-left-icon{
	float: left;
	height: 50px;
	width: 50px;
	text-align: center;
	background-color: #35759F;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
#header-left-icon a {
	font-size: 25px;
}

#header-left-text{
	float: left;
	height: 50px;
		-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
#header-left-text a {
	padding-left: 20px;
	padding-right: 20px;
}
#header-right{
	float: right;
	height: 50px;
}
#header-right:hover #header-right-icon{
	background-color: #3F8DBF;
	}
#header-right:hover #header-right-text{
	background-color: #599BC8;
	}
#header-right-icon{
	float: right;
	height: 50px;
	width: 50px;
	text-align: center;
	background-color: #35759F;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
#header-right-text{
	float: right;
	height: 50px;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
#header-right-text a {
	padding-right: 20px;
	padding-left: 20px;
}
.wrapper{
	width: 100%;
	float: left;
	margin-top: 50px;
	margin-bottom: 150px;
}
.wrapper-inner{
	max-width: 1100px;
	margin-right: auto;
	margin-left: auto;
	 -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE/Edge */
  user-select: none;           /* non-prefixed version, currently
                                  not supported by any browser */
}
.wrapper-inner-buttons{
	width: 100%;
	float: left;
	margin-top:50px;
	text-align: center;
}
.wrapper-inner-buttons a{
	background-color: #3f8dbf;
	line-height: 35px;
	padding-right: 15px;
	padding-left: 15px;
	margin: 10px;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
	border-radius: calc(35px / 2);
}
.wrapper-inner-buttons a:hover{
	background-color: #35759F;
}
.mobile{
	width: 100%;
	float: left;    position: fixed;
	z-index: 99999999;height: 10%;
	background: #0d7cb4;
 }
.mobile-inner{
	max-width: 100%;
	margin: auto;
 	position: relative;   
 	height: 100%;
    margin-left: 20px;
}
.mobile-inner img{
	/*width: 100%;*/
	/*margin-bottom: 30px;*/
}
.mobile-inner p{
   
    margin: 0 auto;
  
    color: #fff;
    padding: 0;
    /* margin: 0; */
    overflow: hidden;     
}
.mobile-inner-nav dl{margin: 0;padding: 0;}
.mobile-inner-nav dl:active p{display: block;}
.mobile-inner-header{
   width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}
.mobile-inner-header-icon{
	display: none;
	color: #ffffff;
	height: 100%;
	font-size:25px;
	text-align: center;
	float:right;
	width: 5%;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;    background: #333;
}
.mobile-inner-header-icon:hover{
	background: #333;
	cursor: pointer;
}
.mobile-inner-header-icon span{
	position: absolute;
	left: calc((100% - 40px) / 2);
	top: calc((100% - 10px) / 2);
	width: 40px;
	height: 2px;
	background-color: rgba(255,255,255,1);
}
.mobile-inner-header-icon span:nth-child(1){
transform: translateY(4px) rotate(0deg);
    top: calc((100% - 60%) / 2);
	}
.mobile-inner-header-icon span:nth-child(2){
transform: translateY(-4px) rotate(0deg);
    top: calc((100% - 60%) / 2);
	}
	

.mobile-inner-header-icon span:nth-child(3){
transform: translateY(-4px) rotate(0deg);
    top: calc((100% - 0%) / 2);
	}

	
.mobile-inner-header-icon-click span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
	}		
.mobile-inner-header-icon-click span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
	}
	


@keyframes clickfirst {
  0% {
	  transform: translateY(4px) rotate(0deg);
	  
  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}	



@keyframes clicksecond {
  0% {
	  transform: translateY(-4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}	

.mobile-inner-header-icon-out span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
	}		
.mobile-inner-header-icon-out span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
	}

@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}	



@keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

/*导航*/
.drawer-hamburger{display:block;right: 10px !important;top: 8px;padding-bottom:26px;z-index: 10000000000;}
.drawer--right.drawer-open .drawer-nav{z-index: 999;top: 0;padding: 100px 0 0 0;width: 100%;background-color: #0d7cb4;}
/*.drawer-open .drawer-overlay{background: rgba(255,255,255,0.3);}*/
.drawer-hamburger{z-index: 10000;padding-top: 3%;}
.drawer-menu-item:hover{color: #fff;}
.drawer-menu li{margin-bottom: 0px;padding:10px 0;}
.drawer-menu-item{padding-bottom: 5px;color: #fff;}
.drawer-dropdown-menu>li{margin-bottom: 8px;}
.nyinfo dd h3{font-size: 18px;margin: 0 0 20px;padding-left: 3%;box-sizing: border-box;text-align: center;}
.nyinfo dd p{font-size: 12px;letter-spacing: 0;line-height: 24px;padding: 0 3%;box-sizing: border-box;}
.nyinfo{width: 100%;margin: 30px 0;}
.page-tit-banner a img{width: 100%;}
.page-tit-banner span{font-size: 15px;margin: 10px 0;display: inline-block;padding-left: 3%;box-sizing: border-box;}
.drawer-hamburger-icon, .drawer-hamburger-icon:after, .drawer-hamburger-icon:before{background-color: #999;}
.top a:active, .top a:hover{color: #fff !important;}

@media screen and (min-width:800px){
	.drawer-hamburger{display:none;}
}

.mobile-inner-nav{
	background-color: rgba(0,0,0,0.99);
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0px;
	padding-top: 30px;
	padding-bottom: 80px;
	display: none;
}
.mobile-inner-nav a:focus {  outline:none;   -moz-outline:none;}
.mobile-inner-nav a{
	display: inline-block;
	line-height: 3em;
	text-decoration: none;
	width: 80%;
	margin-left: 10%;
	color: rgb(175, 175, 175);
	border-bottom: solid 1px rgba(255,255,255,0.3);
	/*-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;*/
	font-weight:300; font-size:17px; 
}
.mobile-inner-nav a:hover{
	color: #d20414;
	border-bottom: solid 1px #d20414;
}

a:focus {  outline:none;   -moz-outline:none;}

a.link-no-style {
    color: #fff;
    text-decoration: none;
}